how to get max value and min values in entire dataframe

44

max_value = column.max()
max_value = df.to_numpy().max()

Comments

Submit
0 Comments